home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / cl720 / qbnws31j.lzh / VZCOLORS.BAS < prev    next >
BASIC Source File  |  1991-12-28  |  2KB  |  38 lines

  1. '-----------------------------------------------------------------------+
  2. '                                                                       |
  3. '       MODULENAME  :   VZCOLORS.BAS                                    |
  4. '                                                                       |
  5. '       DESCRIPTION :   include module colors                           |
  6. '                       foreground = 0 - 31 (16 - 31 = blinking)        |
  7. '                       background = 0 -  7                             |
  8. '                       border     = 0 - 15 (not for VGA and XVGA)      |
  9. '                                                                       |
  10. '                       colors are:                                     |
  11. '                       0 - ZW - zwart           4 - RD - rood          |
  12. '                       1 - DB - donker blauw    5 - PA - paars         |
  13. '                       2 - GR - groen           6 - GL - bruin/geel    |
  14. '                       3 - LB - licht blauw     7 - WT - wit           |
  15. '                                                                       |
  16. '                       all colors can be set to bright by simply       |
  17. '                       adding HLDR.  Note that 6 (brown) will be       |
  18. '                       bright yellow.  All colors from 0 through       |
  19. '                       15 will blink by adding BLNK. For example       |
  20. '                       GR + HLDR + BLNK, will display a blinking       |
  21. '                       bright green color.                             |
  22. '                                                                       |
  23. '       REV   DATE      HISTORY                                         |
  24. '       0.0   04OKT91   first version                                   |
  25. '       1.0   28DEC91   two character mnemonics                         |
  26. '                                                                       |
  27. '-----------------------------------------------------------------------+
  28. '  ALL PROGRAMMING MATERIAL IS PROPERTY OF VZ-SYSTEMS (c) NETHERLANDS   |
  29. '-----------------------------------------------------------------------+
  30.  
  31. DEFINT A-Z
  32.  
  33. CONST ZW = 0, DB = 1, GR = 2, LB = 3
  34. CONST RD = 4, PA = 5, GL = 6, WT = 7
  35.  
  36. CONST HLDR = 8, BLNK = 16
  37.  
  38.